home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 59 / Cine Live 59.iso / pc / Data / Interface / f33.k < prev    next >
Encoding:
Text File  |  2002-01-03  |  4.5 KB  |  234 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000142; 
  4.     release Editor:
  5.         IOWindow is {$000000A0,$00000030,$00000267,$000002CD,$00000000,$FFFFFF77,$00000000,$00000000};
  6.         LayoutWindow is {$000000A9,$00000047,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oMusic2,
  16.         ofond3,
  17.         oScroller4,
  18.         ofilmo_imp6,
  19.         ofilmo_retour7,
  20.         ofilmo_somm8,
  21.         ortf9
  22.     ];
  23.     Events is [
  24.         cOnscreenEvent
  25.         with Flags is $00000004; 
  26.             Commands is [
  27.                 cRunCommand
  28.                 with Flags is $00000004; Target is oMusic2; Rewind is true; end
  29.             ];
  30.         end,
  31.         cKeyboardEvent
  32.         with Value is "+"; 
  33.             Commands is [
  34.                 cSetVolumeCommand
  35.                 with Flags is $00000004; Mode is ExecuteHigher; end
  36.             ];
  37.         end,
  38.         cKeyboardEvent
  39.         with Value is "-"; 
  40.             Commands is [
  41.                 cSetVolumeCommand
  42.                 with Mode is ExecuteLower; end
  43.             ];
  44.         end,
  45.         cKeyboardEvent
  46.         with Flags is $00000004; Value is "m"; 
  47.             Commands is [
  48.                 cRunCommand
  49.                 with Flags is $00000004; Target is oMusic2; Mode is Toggle; Rewind is true; end
  50.             ];
  51.         end
  52.     ];
  53. end;
  54.  
  55. object oMusic2 is cSound
  56. with 
  57.     Flags is $00000140; 
  58.     Name is "Music"; 
  59.     
  60.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  61.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  62.     Looping is true; 
  63.     URL is "../Sons/1.mp3"; 
  64.     
  65. end;
  66.  
  67. object ofond3 is cImage
  68. with 
  69.     Flags is $00000154; 
  70.     Name is "fond"; 
  71.     Enabled is false; 
  72.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  73.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  74.     
  75.     URL is "../Images/33.jpg"; 
  76.     
  77.     
  78. end;
  79.  
  80. object oScroller4 is cScroller
  81. with 
  82.     Name is "Scroller"; 
  83.     Clipping is true; Cursor is oFingerCursor; 
  84.     X is 510; Y is 104; 
  85.     Width is 256; Height is 438; 
  86.     
  87.     Vertical is oVertical_Macintosh_Color_ScrollBar; 
  88.     Elements is [
  89.         oimage_biographie5
  90.     ];
  91.     Events is [
  92.         cMouseMovedEvent
  93.         with 
  94.             Commands is [
  95.                 cScrollCommand
  96.                 with Target is oTargetSelf; end
  97.             ];
  98.         end
  99.     ];
  100. end;
  101.  
  102. object oimage_biographie5 is cImage
  103. with 
  104.     Name is "image biographie"; 
  105.     
  106.     X is 149; 
  107.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  108.     
  109.     URL is "../Images/n33.jpg"; 
  110.     
  111.     
  112. end;
  113.  
  114. object ofilmo_imp6 is cImage
  115. with 
  116.     Name is "filmo imp"; 
  117.     Shown is false; Cursor is oFingerCursor; 
  118.     X is 475; Y is 573; 
  119.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  120.     
  121.     URL is "../Images/actor%20imprim.jpg"; 
  122.     
  123.     
  124.     Events is [
  125.         cMouseEnterEvent
  126.         with 
  127.             Commands is [
  128.                 cShowCommand
  129.                 with Target is oTargetSelf; end
  130.             ];
  131.         end,
  132.         cMouseLeaveEvent
  133.         with 
  134.             Commands is [
  135.                 cShowCommand
  136.                 with Target is oTargetSelf; Mode is Clear; end
  137.             ];
  138.         end,
  139.         cMouseUpEvent
  140.         with Flag is true; 
  141.             Commands is [
  142.                 cPrintCommand
  143.                 with Target is ortf9; end
  144.             ];
  145.         end
  146.     ];
  147. end;
  148.  
  149. object ofilmo_retour7 is cImage
  150. with 
  151.     Flags is $00000150; 
  152.     Name is "filmo retour"; 
  153.     Shown is false; Cursor is oFingerCursor; 
  154.     X is 321; Y is 573; 
  155.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  156.     
  157.     URL is "../Images/actor%20retour.jpg"; 
  158.     
  159.     
  160.     Events is [
  161.         cMouseEnterEvent
  162.         with Flags is $00000004; 
  163.             Commands is [
  164.                 cShowCommand
  165.                 with Flags is $00000004; Target is oTargetSelf; end
  166.             ];
  167.         end,
  168.         cMouseLeaveEvent
  169.         with Flags is $00000004; 
  170.             Commands is [
  171.                 cShowCommand
  172.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end
  173.             ];
  174.         end,
  175.         cMouseUpEvent
  176.         with Flags is $00000004; Flag is true; 
  177.             Commands is [
  178.                 cRunCommand
  179.                 with Flags is $00000004; Target is oMusic2; Mode is Clear; Rewind is true; end,
  180.                 cBackCommand
  181.                 with Flags is $00000004; end
  182.             ];
  183.         end
  184.     ];
  185. end;
  186.  
  187. object ofilmo_somm8 is cImage
  188. with 
  189.     Flags is $00000154; 
  190.     Name is "filmo somm"; 
  191.     Shown is false; Cursor is oFingerCursor; 
  192.     X is 629; Y is 573; 
  193.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  194.     
  195.     URL is "../Images/actor%20somm.jpg"; 
  196.     
  197.     
  198.     Events is [
  199.         cMouseEnterEvent
  200.         with Flags is $00000004; 
  201.             Commands is [
  202.                 cShowCommand
  203.                 with Flags is $00000004; Target is oTargetSelf; end
  204.             ];
  205.         end,
  206.         cMouseLeaveEvent
  207.         with Flags is $00000004; 
  208.             Commands is [
  209.                 cShowCommand
  210.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end
  211.             ];
  212.         end,
  213.         cMouseUpEvent
  214.         with Flags is $00000004; Flag is true; 
  215.             Commands is [
  216.                 cBrowseCommand
  217.                 with Flags is $00000004; URL is "sommaire.k"; end
  218.             ];
  219.         end
  220.     ];
  221. end;
  222.  
  223. object ortf9 is cRTFText
  224. with 
  225.     Flags is $00000154; 
  226.     Name is "rtf"; 
  227.     Enabled is false; Shown is false; 
  228.     AdjustX is AlignToLeft; AdjustY is AlignToTop; 
  229.     AdjustWidth is GetLayoutWidth; AdjustHeight is GetDataHeight; 
  230.     
  231.     URL is "../Textes/33.rtf"; 
  232.     
  233.     Antialiased is true; 
  234. end;